-
Re: Why is my VLOOKUP not working?
Hi David Brandt, You can try the following formula- =VLOOKUP([ANALYST PARTICIPANTS]@row, {SAFFS:Firm:Analyst}, 2, false) Here, I have removed a colon in the lookup table selection. So, you can again …1 · -
Re: Number of days between 2 dates ignoring errors
Hi Eenmeier, You can try following formula in the sheet summary. =AVERAGEIF([Live Date]:[Live Date], AND(MONTH(@cell) = 1, YEAR(@cell) = 2024), [Dates to live]:[Dates to live]) You can specify the ye…2 · -
Re: Formula Help Calculate # of Days with 2 date fields, unless date field is blank use todays date.
Hi Danielle Maroon, You can try the below formula- =IF(AND(NOT(ISBLANK([Build Start Date]@row)), NOT(ISBLANK([Build End Date]@row))), [Build End Date]@row - [Build Start Date]@row, IF(ISBLANK([Build …1 · -
Re: Formula HELP... Display number only is formula results in less than ZERO
Hi Danielle Maroon, Please use the below mentioned logic as per your cells. here, I have used IF condition, so if # of Contracted eDocs - # of Submitted eDocs< 0 then it will show blank otherwise …1 · -
Re: Automated DOTs byt date, Need Checkbox TRUE to equeal Green Dot
Hi Thomas Reilly, You mean that, you want to add one more condition in the existing formula, right? That is if checkbox is checked than status to turn green. Please let me know so I can provide a for…1 ·